home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / class / const.d < prev    next >
Text File  |  1996-02-04  |  723b  |  55 lines

  1.  
  2.  
  3.  
  4. /*                                      
  5.  *
  6.  *      Copyright (c) 1993-1996 Algorithms Corporation
  7.  *      3020 Liberty Hills Drive
  8.  *      Franklin, TN 37067
  9.  *
  10.  *      ALL RIGHTS RESERVED.
  11.  *
  12.  *      
  13.  *      
  14.  */
  15.  
  16.  
  17.  
  18. defclass  Constant;
  19.  
  20.  
  21. imeth    object    gDispose, gDeepDispose, gGCDispose ()
  22. {
  23.     /*  do nothing  */
  24.     return self;   /*  not NULL  */
  25. }
  26.  
  27. imeth    gCopy, gDeepCopy ()
  28. {
  29.     return self;
  30. }
  31.  
  32. imeth    int    gEqual(obj)
  33. {
  34.     return self == obj;
  35. }
  36.  
  37.  
  38.  
  39.  
  40.  
  41. /*                                      
  42.  *
  43.  *      Copyright (c) 1993-1996 Algorithms Corporation
  44.  *      3020 Liberty Hills Drive
  45.  *      Franklin, TN 37067
  46.  *
  47.  *      ALL RIGHTS RESERVED.
  48.  *
  49.  *      
  50.  *      
  51.  */
  52.  
  53.  
  54.  
  55.